mirror of
https://github.com/linuxserver/docker-nginx.git
synced 2026-02-11 12:58:38 +08:00
Added samples files from template
This commit is contained in:
parent
c0d50937de
commit
359bcdb184
30
Dockerfile
Normal file
30
Dockerfile
Normal file
@ -0,0 +1,30 @@
|
||||
FROM linuxserver/baseimage
|
||||
MAINTAINER Your Name <your@email.com>
|
||||
|
||||
#Applying stuff
|
||||
RUN apt-get update -q && \
|
||||
##DO STUFF HERE
|
||||
## END EACH LINE WITH && \
|
||||
## EXCEPT THE LINE BELOW
|
||||
apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
|
||||
|
||||
|
||||
#Adding Custom files
|
||||
RUN mkdir /defaults
|
||||
ADD init/ /etc/my_init.d/
|
||||
ADD services/ /etc/service/
|
||||
ADD cron/ /etc/cron.d/
|
||||
ADD defaults/ /defaults/
|
||||
RUN chmod -v +x /etc/service/*/run && chmod -v +x /etc/my_init.d/*.sh
|
||||
|
||||
|
||||
# Volumes and Ports
|
||||
VOLUME /volume
|
||||
EXPOSE PORT
|
||||
|
||||
## NOTES ##
|
||||
## Delete files\folders not needed, e.g. if you dont run any cron commands, delete the cron folder and the "ADD cron/ /etc/cron.d/" line.
|
||||
## The User abc, should be running everything, give that permission in any case you need it.
|
||||
## Do not upgrade the baseimage before we get a chance to look at it from a wholeheartly perspective.
|
||||
## When creating init's Use 10's where posible, its to allow add stuff in between when needed. also, do not be afraid to split custom code into several little ones.
|
||||
## Make stuff as quiet as posible "e.g. apt-get update -qq" (Does not apply to the "app" itself. e.g. plex)
|
||||
7
README.md
Normal file
7
README.md
Normal file
@ -0,0 +1,7 @@
|
||||

|
||||
|
||||
## This is a Container in active development, and should not be used by the general public.
|
||||
If you are curious about the current progress or want to comment\contribute to this work, feel free to join us at out irc channel:
|
||||
[IRC](http://www.linuxserver.io/index.php/irc/) on freenode at `#linuxserver.io`.
|
||||
|
||||
or visit our website at [http://linuxserver.io](http://linuxserver.io)
|
||||
45
READMETEMPLATE.md
Normal file
45
READMETEMPLATE.md
Normal file
@ -0,0 +1,45 @@
|
||||

|
||||
|
||||
The [LinuxServer.io](http://linuxserver.io) team brings you another quality container release featuring auto-update on startup, easy user mapping and community support. Be sure to checkout our [forums](http://forum.linuxserver.io) or for real-time support our [IRC](http://www.linuxserver.io/index.php/irc/) on freenode at `#linuxserver.io`.
|
||||
|
||||
# linuxserver/<container-name>
|
||||
|
||||
<Provide a short, concise description of the application. No more than two SHORT paragraphs. Link to sources where possible and include an image illustrating your point if necessary. Point users to the original applications website, as that's the best place to get support - not here.>
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
docker create --name=<container-name> -v /etc/localtime:/etc/localtime:ro -v <path to data>:/config -e PGID=<gid> -e PUID=<uid> -p 1234:1234 linuxserver/<container-name>
|
||||
```
|
||||
|
||||
**Parameters**
|
||||
|
||||
* `-p 4242` - the port(s)
|
||||
* `-v /etc/localhost` for timesync - *optional*
|
||||
* `-v /config` -
|
||||
* `-e PGID` for GroupID - see below for explanation
|
||||
* `-e PUID` for UserID - see below for explanation
|
||||
|
||||
It is based on phusion-baseimage with ssh removed, for shell access whilst the container is running do `docker exec -it quassel-core /bin/bash`.
|
||||
|
||||
### User / Group Identifiers
|
||||
|
||||
**TL;DR** - The `PGID` and `PUID` values set the user / group you'd like your container to 'run as' to the host OS. This can be a user you've created or even root (not recommended).
|
||||
|
||||
Part of what makes our containers work so well is by allowing you to specify your own `PUID` and `PGID`. This avoids nasty permissions errors with relation to data volumes (`-v` flags). When an application is installed on the host OS it is normally added to the common group called users, Docker apps due to the nature of the technology can't be added to this group. So we added this feature to let you easily choose when running your containers.
|
||||
|
||||
## Setting up the application
|
||||
|
||||
<Insert a basic user guide here to get a n00b up and running with the software inside the container.> DELETE ME
|
||||
|
||||
|
||||
## Updates
|
||||
|
||||
* Upgrade to the latest version simply `docker restart <container-name>`.
|
||||
* To monitor the logs of the container in realtime `docker logs -f <container-name>`.
|
||||
|
||||
|
||||
|
||||
## Versions
|
||||
|
||||
+ **dd.MM.yyyy:** This is the standard Version type now.
|
||||
1
cron/sample_cron
Normal file
1
cron/sample_cron
Normal file
@ -0,0 +1 @@
|
||||
* * * * * abc /path/to/command/to/run.sh
|
||||
1
defaults/sample.conf
Normal file
1
defaults/sample.conf
Normal file
@ -0,0 +1 @@
|
||||
placeholder config file, delete in final container
|
||||
15
init/10_new_user.sh
Normal file
15
init/10_new_user.sh
Normal file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
#This File should always be included, its the one that makes PUID and GUID Work.
|
||||
#
|
||||
|
||||
if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -o -u "$PUID" abc ; fi
|
||||
if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
|
||||
chown abc:abc -R /config
|
||||
echo "
|
||||
-----------------------------------
|
||||
GID/UID
|
||||
-----------------------------------
|
||||
User uid: $(id -u abc)
|
||||
User gid: $(id -g abc)
|
||||
-----------------------------------
|
||||
"
|
||||
2
services/servicename/run
Normal file
2
services/servicename/run
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
exec /sbin/setuser abc "/command/to/execute"
|
||||
Loading…
x
Reference in New Issue
Block a user