22 lines
400 B
YAML
22 lines
400 B
YAML
name: wordsearch
|
|
services:
|
|
wordsearch:
|
|
build: .
|
|
networks:
|
|
default: null
|
|
ports:
|
|
- mode: ingress
|
|
target: 8000
|
|
published: "3801"
|
|
protocol: tcp
|
|
restart: unless-stopped
|
|
volumes:
|
|
- type: bind
|
|
source: ./themes
|
|
target: /app/themes
|
|
bind:
|
|
create_host_path: true
|
|
networks:
|
|
default:
|
|
name: wordsearch_default
|