http.sh/docker-compose.yml

20 lines
383 B
YAML
Raw Normal View History

2021-11-10 23:50:33 +01:00
# example docker-compose for HTTP.sh
# adapt to your liking. serves 4 people
version: '3'
services:
httpsh:
build:
context: .
dockerfile: Dockerfile
image: httpsh
restart: always
ports:
- '1337:1337'
volumes:
- './config:/httpsh/config'
- './app:/httpsh/app'
- './secret:/httpsh/secret'
- './storage:/httpsh/storage'