docker-compose.yml 396 B

1234567891011121314
  1. services:
  2. wally-web:
  3. build: .
  4. image: wally-dice
  5. container_name: wally-dice
  6. restart: always
  7. ports:
  8. - '127.0.0.1:3000:3000' # use with proxy server (eg. Nginx)
  9. # - '0.0.0.0:80:3000' # use without proxy server
  10. logging: # apply better controls to Docker overlay folder
  11. driver: 'json-file'
  12. options:
  13. max-file: '5'
  14. max-size: '10m'