blog/docker-compose.yml

19 lines
340 B
YAML
Raw Normal View History

version: '3'
services:
blog:
build:
context: writing_env/
container_name: blog
environment:
- BLOG_UID=1000
- BLOG_GID=1000
2017-12-15 19:43:08 +01:00
- USER=blog
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