Photon reverse geocoding
· 513 B · Text
Raw
version: '3.7'
services:
photon:
image: rtuszik/photon-docker:latest
container_name: photon
environment:
- COUNTRY_CODE=nl
- PUID=1036
- PGID=100
- TZ=Europe/Amsterdam
volumes:
- photon_data:/photon/photon_data
restart: unless-stopped
ports:
- 2322:2322
volumes:
photon_data:
driver: local # Define the driver and options under the volume name
driver_opts:
type: none
device: /volume1/docker/photon/photon_data
o: bind
| 1 | version: '3.7' |
| 2 | |
| 3 | services: |
| 4 | photon: |
| 5 | image: rtuszik/photon-docker:latest |
| 6 | container_name: photon |
| 7 | environment: |
| 8 | - COUNTRY_CODE=nl |
| 9 | - PUID=1036 |
| 10 | - PGID=100 |
| 11 | - TZ=Europe/Amsterdam |
| 12 | volumes: |
| 13 | - photon_data:/photon/photon_data |
| 14 | restart: unless-stopped |
| 15 | ports: |
| 16 | - 2322:2322 |
| 17 | |
| 18 | volumes: |
| 19 | photon_data: |
| 20 | driver: local # Define the driver and options under the volume name |
| 21 | driver_opts: |
| 22 | type: none |
| 23 | device: /volume1/docker/photon/photon_data |
| 24 | o: bind |