25 lines
420 B
YAML
25 lines
420 B
YAML
# docker compose
|
|
|
|
services:
|
|
pwdgen:
|
|
build: .
|
|
image: pwdgen_v2:latest
|
|
container_name: pwd.matt-cloud.com
|
|
ports:
|
|
- "10.19.1.1:80:80"
|
|
volumes:
|
|
# hash file goes here for count and uniqueness
|
|
- ./pwdgen:/opt/pwdgen
|
|
networks:
|
|
- net
|
|
restart: always
|
|
|
|
networks:
|
|
net:
|
|
driver: bridge
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
-
|
|
subnet: 10.19.1.0/24
|