mirror of
https://git.sakamoto.pl/laudom/http.sh.git
synced 2025-09-17 23:43:44 +02:00
19 lines
383 B
YAML
19 lines
383 B
YAML
# 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'
|