https://github.com/retailify/docker-gwan
G-WAN web servers delivers static and dynamic content
https://github.com/retailify/docker-gwan
Last synced: 9 months ago
JSON representation
G-WAN web servers delivers static and dynamic content
- Host: GitHub
- URL: https://github.com/retailify/docker-gwan
- Owner: retailify
- Created: 2016-08-13T10:41:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-13T17:20:07.000Z (almost 10 years ago)
- Last Synced: 2025-04-02T21:22:19.224Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 783 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-gwan
This project contains the complete installation for the latest version of [G-WAN](http://gwan.ch).
> G-WAN 7.12.6 64-bit (Feb 8 2016 16:33:28)
#### Build
> docker build -t retailify/docker-gwan .
#### Run (static server)
> docker run -d -p 6070:80 -v /my/path/to/static/www:/opt/www retailify/docker-gwan
##### Run (app server)
> docker run -d -p 6070:80 -v /my/path/to/static/www:/opt/www -v /my/path/to/dynamic/csp:/opt/csp retailify/docker-gwan
##### Attention
The directory structure of G-WAN collides with the volume structure of Docker. So we created a symbolic link to the www directory. Furthermore you need to change your static file ownership to www-data:www-data. If you do not have www-data user and group, you can use the following command inside your volume mount.
> chown -R 33:33 .