This config assumes that nginx is run from docker image _/nginx.
docker network create nginx
mkdir -p /etc/myproject/nginx
cd /etc/myproject/nginx
# edit the login message | |
vi /etc/motd | |
# switch to usable repos - iSH defaults often failed with EOF errors | |
echo https://dl-cdn.alpinelinux.org/alpine/v3.13/main > /etc/apk/repositories | |
echo https://dl-cdn.alpinelinux.org/alpine/v3.13/community >> /etc/apk/repositories | |
# install some basics | |
apk add zsh bash | |
apk add sed attr dialog dialog-doc bash bash-doc bash-completion grep grep-doc |
🌞 Morning 14 commits ██░░░░░░░░░░░░░░░░░░░ 9.9% | |
🌆 Daytime 41 commits ██████░░░░░░░░░░░░░░░ 29.1% | |
🌃 Evening 54 commits ████████░░░░░░░░░░░░░ 38.3% | |
🌙 Night 32 commits ████▊░░░░░░░░░░░░░░░░ 22.7% |
This config assumes that nginx is run from docker image _/nginx.
docker network create nginx
mkdir -p /etc/myproject/nginx
cd /etc/myproject/nginx
Whichever route you take to implementing containers, you’ll want to steer clear of common pitfalls that can undermine the efficiency of your Docker stack.
The beauty of containers—and an advantage of containers over virtual machines—is that it is easy to make multiple containers interact with one another in order to compose a complete application. There is no need to run a full application inside a single container. Instead, break your application down as much as possible into discrete services, and distribute services across multiple containers. This maximizes flexibility and reliability.
It is possible to install a complete Linux operating system inside a container. In most cases, however, this is not necessary. If your goal is to host just a single application or part of an application in the container, you need to install only the essential
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
</dependency> |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>4.2.2.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-databind</artifactId> | |
<version>2.5.3</version> | |
</dependency> |
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" | |
destroy-method="close"> | |
<property name="driverClass" value="${db.driver}" /> | |
<property name="jdbcUrl" value="${db.url}" /> | |
<property name="user" value="${db.username}" /> | |
<property name="password" value="${db.password}" /> | |
</bean> | |
<jdbc:initialize-database data-source="dataSource"> | |
<jdbc:script location="classpath:config/schema.sql" /> | |
<jdbc:script location="classpath:config/data.sql" /> |
<servlet> | |
<servlet-name>dispatcher</servlet-name> | |
<servlet-class> | |
org.springframework.web.servlet.DispatcherServlet | |
</servlet-class> | |
<init-param> | |
<param-name>contextConfigLocation</param-name> | |
<param-value>/WEB-INF/todo-servlet.xml</param-value> | |
</init-param> | |
<load-on-startup>1</load-on-startup> |
<bean | |
class="org.springframework.web.servlet.view.InternalResourceViewResolver"> | |
<property name="prefix"> | |
<value>/WEB-INF/views/</value> | |
</property> | |
<property name="suffix"> | |
<value>.jsp</value> | |
</property> | |
</bean> |
@Component | |
public class WelcomeService { | |
//Bla Bla Bla | |
} | |
@RestController | |
public class WelcomeController { | |
@Autowired | |
private WelcomeService service; | |
@RequestMapping("/welcome") | |
public String welcome() { |