Compare commits

...

2 Commits

Author SHA1 Message Date
Ruben van de Ven 1e1cb5cfd0 update compose to listen to localhost only 2022-03-15 18:23:42 +01:00
Ruben van de Ven f1a077da50 auto start container 2022-03-15 17:57:31 +01:00
1 changed files with 2 additions and 1 deletions

View File

@ -2,11 +2,12 @@ version: '3'
services: services:
svganim: svganim:
image: svganim image: svganim
restart: always
build: build:
context: . context: .
dockerfile: ./Dockerfile dockerfile: ./Dockerfile
# entrypoint: "/bin/sh -c \"poetry run python webserver.py --storage /files\"" # entrypoint: "/bin/sh -c \"poetry run python webserver.py --storage /files\""
ports: ports:
- "7890:7890" - "127.0.0.1:7890:7890"
volumes: volumes:
- ./files:/files - ./files:/files