blog/docker-compose.yml

18 lines
322 B
YAML
Raw Normal View History

version: '3'
services:
blog:
build:
context: writing_env/
container_name: blog
environment:
- BLOG_UID=1000
- BLOG_GID=1000
volumes:
- $PWD:/blog
- $HOME/.ssh:/home/blog/.ssh
2017-05-23 11:26:00 +02:00
ports:
- "127.0.0.1:8000:8000"
stdin_open: true
tty: true
command: /bin/true