simplify docker compose

This commit is contained in:
Gianni Carafa
2023-11-08 23:06:45 +01:00
parent 8058ebf0ca
commit 79438a0b59

View File

@@ -3,13 +3,16 @@ services:
ladder: ladder:
image: ghcr.io/kubero-dev/ladder:latest image: ghcr.io/kubero-dev/ladder:latest
container_name: ladder container_name: ladder
build: . #build: .
#restart: always #restart: always
#command: sh -c ./ladder #command: sh -c ./ladder
environment: environment:
- PORT=8080 - PORT=8080
- RULESET=/app/ruleset.yaml - RULESET=/app/ruleset.yaml
#- PREFORK=true #- EXPOSE_RULESET=true
#- PREFORK=false
#- DISABLE_FORM=fase
#- FORM_PATH=/app/form.html
#- X_FORWARDED_FOR=66.249.66.1 #- X_FORWARDED_FOR=66.249.66.1
#- USER_AGENT=Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) #- USER_AGENT=Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
#- USERPASS=foo:bar #- USERPASS=foo:bar
@@ -19,11 +22,4 @@ services:
- "8080:8080" - "8080:8080"
volumes: volumes:
- ./ruleset.yaml:/app/ruleset.yaml - ./ruleset.yaml:/app/ruleset.yaml
deploy: - ./handlers/form.html:/app/form.html
resources:
limits:
cpus: "0.50"
memory: 512M
reservations:
cpus: "0.25"
memory: 128M