From 7c21a1c896158bff956cf68fe8d837589fe4be1f Mon Sep 17 00:00:00 2001 From: pipistrello Date: Tue, 18 Jan 2022 15:16:57 +0300 Subject: [PATCH] initial --- rconfig/docker-compose.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 rconfig/docker-compose.yaml diff --git a/rconfig/docker-compose.yaml b/rconfig/docker-compose.yaml new file mode 100644 index 0000000..83f8d7a --- /dev/null +++ b/rconfig/docker-compose.yaml @@ -0,0 +1,20 @@ +rconfig: + container_name: rconfig + image: libyerman/rconfig:3.9.6 + #image: local/rconfig + privileged: true + restart: always + +# To persist data for the web and database configurations, uncomment the 3 lines below: + volumes: + - 'mysql:/mnt/containers/rconfig/container-data/data/mysql':Z + - 'rconfig:/mnt/containers/rconfig/container-data/data/rconfig':Z + ports: + - "8080:80" + - "8443:443" + networks: + - reverseproxy-nw + +networks: + reverseproxy-nw: + external: true \ No newline at end of file